/*定义滚动条高宽及背景
 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

/*定义滚动条轨道
内阴影+圆角*/
::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
	background-color: #d0d0d0;
}

/*定义滑块
 内阴影+圆角*/
::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
	background-color: #bc9f78;
}
body,html {
	width: 100%;
	min-height: 100% !important;
}
#mian {
	min-width: 1200px;
}
.home-bannar {
	width: 100%;
	height: 890px;
	overflow: hidden;
	position: relative;
}
#slider {
	width: 100%;
	height: 890px;
	overflow: hidden;
}
.swiper-wrapper {
	width: 100%;
	height: 100%;
}
.swiper-slide {
	position: relative;
	overflow: hidden;
}
.home-swiper {
	width: 100%;
	height: 100%;
}
.home-swiper img {
	width: 100%;
	height: 100%;
}
.sider-text {
	width: 1200px;
	padding-left: 110px;
	box-sizing: border-box;
	position: absolute;
	z-index: 999;
	top: 47%;
	left: 50%;
	transform: translate(-50%, -50%);
	
}
.slider-text1 {
	font-size: 55px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	text-shadow: 0px 1px 0px rgba(0,0,0,0.5);
	background: linear-gradient(#233d54, #d1d7f7);
	-webkit-background-clip: text;
    color: transparent;
}
.slider-text2 {
	font-size: 24px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #213343;
	display: flex;
	align-items: flex-end;
	margin-top: 12px;
}
.slider-text2 span {
	font-size: 30px;
}
.slider-text3 {
	margin-top: 30px;
	width: 172px;
	height: 52px;
	border: 1px solid #4f5d6a;
	border-radius: 10px;
	
	display: flex;
	align-items: center;
	justify-content: center;
	
	font-size: 22px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #213343;
	cursor: pointer;
}


.slider-box {
	position: absolute;
	width: 1230px;
	z-index: 99;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.slider-button {
	width: 68px;
	height: 68px;
	cursor: pointer;
	background-color: transparent;
}
.slider-left {
	left: 160px;
	background: url('/static/home/img/home-bannar-icon.png');
	background-size: 100% 100%;
}
.slider-right {
	right: 160px;
	background: url('/static/home/img/home-bannar-right.png');
	background-size: 100% 100%;
}


.home-product {
	width: 100%;
	height: 260px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	
	background: url('/static/home/img/png_proc.jpg');
	background-size: 100% 100%;
}
.home-text1 {
	position: relative;
	font-size: 28px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #252E49;
}
.home-text1::after {
	content: '';
	position: absolute;
	top: 50%;
	left: -495px;
	width: 465px;
	height: 1px;
	background: #B5AEA8;
}
.home-text1::before {
	content: '';
	position: absolute;
	top: 50%;
	right: -495px;
	width: 465px;
	height: 1px;
	background: #B5AEA8;
}
.hone-tabs {
	margin-top: 35px;
	display: flex;
	align-items: center;
}
.hone-tabs-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0 45px;
	cursor: pointer;
}
.hone-tabs-item span {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #8D8684;
	line-height: 45px;
}
.hone-tabs-item:first-of-type span {
	color: #B89566;
}


.home-product-item {
	display: flex;
}
.home-product-item:nth-child(2n) {
	flex-direction: row-reverse;
} 


.product-item-left {
	height: 400px;
	flex: 1;
	overflow: hidden;
}
.product-item-left img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s;
}
.product-item-left img:hover {
	transition: all 0.3s;
	transform: scale(1.1);
}

.product-item-right {
	height: 400px;
	flex: 1;
	box-sizing: border-box;
	
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.home-product-item:nth-child(2n) .product-item-right {
	align-items: flex-end;
}
.pro-box {
	padding: 0 45px;
}
.home-text2 {
	font-size: 30px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #BC9F78;
	padding-left: 20px;
	position: relative;
	display: block;
}
.home-text2::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 0%;
	transform: translateY(-50%);
	width: 10px;
	height: 30px;
	background-color: #bc9f78;
}
.home-text3 {
	width: 530px;
	padding: 35px 0 42px 0;
	box-sizing: border-box;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #747474;
	line-height: 30px;
}
.home-text4 {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 140px;
	height: 40px;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	background-color: #bc9f78;
	cursor: pointer;
}
.home-about {
	display: flex;
}
.home-about-left {
	height: 800px;
	flex: 1;
	background-color: #252e49;
	
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.home-about-right {
	height: 800px;
	flex: 1;
	background: url('/static/home/img/about-left.png');
	background-size: 100% 100%;
}
.home-about-box {
	padding-right: 135px;
	width: 465px;
}
.home-text5 {
	font-size: 55px;
	font-family: DFZongYi;
	font-weight: normal;
	color: #B89566;
	line-height: 48px;
}
.home-text6 {
	font-size: 28px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #B89566;
	margin-top: 22px;
}
.home-text7 {
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 26px;
	
	padding: 50px 0 65px 0;
	
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;

}
.home-text8 {
	width: 152px;
	height: 52px;
	border: 3px dashed rgba(255, 255, 255, .4);
	
	display: flex;
	align-items: center;
	justify-content: center;
	
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	
	cursor: pointer;
}
.home-case {
	height: 900px;
	background: url('/static/home/img/case-bg.png');
	background-size: 100% 100%;
	
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.home-text9 {
	font-size: 55px;
	font-family: DFZongYi;
	font-weight: normal;
	color: #908352;
}
.home-text10 {
	font-size: 28px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #908352;
}
.home-case-box {
	padding: 55px 0 80px 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.home-about-box-item {
	margin-right: 23px;
	width: 385px;
	height: 410px;
	background: #FFFFFF;
	position: relative;
	padding: 24px;
	box-sizing: border-box;
	overflow: hidden;
	cursor: pointer;
}
.home-about-box-item img {
	transition: all 0.3s;
}

.home-about-box-item:hover img {
	transition: all 0.3s;
	transform: scale(1.1);
}

.home-about-box-item::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 12px;
	height: 20px;
	background: #908352;
}
.home-about-box-item:last-of-type {
	margin-right: 0 !important;
}
.home-text11 {
	display: flex;
	align-items: center;
	justify-content: center;
	
	width: 152px;
	height: 52px;
	border: 3px dashed #908352;
	
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #908352;
	cursor: pointer;
}
.home-about-box-item-img {
	height: 235px;
	overflow: hidden;
}
.home-about-box-item-img img {
	width: 100%;
	height: 100%;
}
.home-text12 {
	margin-top: 15px;
	width: 100%;
	font-size: 20px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #4F4F4F;
	text-align: center;
}
.home-text13 {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #4F4F4F;
	line-height: 30px;
}

.text-slice1 {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.text-slice2 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.home-trait {
	height: 900px;
	background: url('/static/home/img/trait.png');
	background-size: 100% 100%;
	
	display: flex;
	justify-content: center;
}
.home-trait-mid {
	height: 100%;
	width: 420px;
	background: url('/static/home/img/trait-mid.jpg');
	background-size: 100% 100%;
}
.home-trait-box {
	height: 100%;
	
}
.home-trait-box {
	padding: 0 30px;
	display: flex;
	flex-direction: column;
}
.home-trait-box-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 330px;
}
.home-trait-img {
	width: 140px;
	height: 140px;
	margin-top: 67px;
}
.home-text15 {
	padding: 24px 0 22px 0;
	font-size: 24px;
	font-family: CTBiaoSongSJ;
	font-weight: 400;
	color: #FFFFFF;
}
.home-text14 {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 24px;
}
.home-text16 {
	text-align: center;
	padding-top: 148px;
	font-size: 30px;
	font-family: CTBiaoSongSJ;
	font-weight: 400;
	color: #FFFFFF;
}
.home-text17 {
	text-align: center;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	margin-top: 10px;
}
.home-text18 {
	margin-top: 65px;
	padding: 0 24px;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 28px;
}

.home-state {
	height: 847px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.home-text19 {
	font-size: 55px;
	font-family: DFZongYi;
	font-weight: normal;
	color: #908352;
}

.home-text20 {
	font-size: 28px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #908352;
	margin: 18px 0 33px 0;
}
.home-state-tabs {
	display: flex;
	align-items: center;
	justify-content: center;
}
.home-state-tabs div {
	width: 122px;
	height: 47px;
	border: 2px dashed #908352;
	
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #908352;
}

.home-state-tabs div:last-of-type {
	margin-right: 0 !important;
}
.home-onTabs {
	background-color: #908352 !important;
	color: #E9E7E6 !important;
}

.home-state-box {
	margin-top: 50px;
	display: flex;
	justify-content: center;
}
.home-state-item {
	width: 285px;
	height: 420px;
	background: #FFFFFF;
	box-shadow: 0px 1px 18px 0px rgba(0,0,0,0.1);
	margin-right: 20px;
	cursor: pointer;
}
.home-state-item:last-of-type {
	margin-right: 0;
}
.home-state-item-img {
	height: 200px;
	overflow: hidden;
}
.home-state-item-img img {
	width: 100%;
	height: 100%;
	transition: all 0.3s;
}
.home-state-item:hover img {
	transition: all 0.3s;
	transform: scale(1.1);
}
.home-text21 {
	width: 100%;
	margin-top: 20px;
	padding: 0 12px;
	box-sizing: border-box;
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #606060;
}
.home-text22 {
	margin-top: 10px;
	padding: 0 12px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #606060;
}
.home-text23 {
	margin-top: 20px;
	padding: 0 12px;
	width: 100%;
	box-sizing: border-box;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #606060;
	line-height: 24px;
}

.page-bannar {
	height: 570px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.page-bannar-box {
	padding-top: 85px;
	width: 1200px;
}
.about-text1 {
	font-size: 40px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #FEFEFE;
	opacity: 0.8;
}
.about-text2 {
	margin-top: 25px;
	font-size: 42px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #FEFEFE;
	opacity: 0.8;
}
.about-div {
	margin-top: 50px;
	width: 42px;
	height: 4px;
	background-color: #cfb34d;
}
.page-tabs {
	background-color: #fff;
	display: flex;
	justify-content: center;
}
.page-mian {
	width: 1200px;
}
.page-title {
	padding-top: 25px;
	display: flex;
	align-items: center;
	
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #999999;
}
.page-title img {
	width: 18px;
	height: 15px;
	margin-right: 10px;
}
.page-box {
	padding-top: 70px;
	border-bottom: 1px solid #E4E4E4;
	
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.page-box div {
	min-width: 120px;
	height: 35px;
	
	display: flex;
	align-items: center;
	justify-content: center;
	
	font-size: 20px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	margin-left: 40px;
	
	cursor: pointer;
}
.onPageTabs {
	background: #BA996C !important;
	color: #FFFFFF !important;
}

.page-headline {
	margin-top: 80px;
	
	display: flex;
	justify-content: center;
	
	background-color: #fff;
}
.page-text1 {
	font-size: 32px;
	font-family: Javanese Text;
	font-weight: 400;
	color: #D6D6D6;
	line-height: 44px;
}
.page-text2 {
	margin-top: 10px;
	font-size: 32px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
}
.about-mian {
	padding: 65px 0 100px 0;
	background-color: #fff;
	
	display: flex;
	justify-content: center;
}
.about-conent {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #666666;
	line-height: 24px;
}

.about-mian1 {
	margin-top: 65px;
	display: flex;
	justify-content: center;
}
.about-mian1-box {
	width: 1200px;
	height: 500px;
	display: flex;
	justify-content: space-between;
}
.about-mian1-mid {
	width: 275px;
	height: 100%;
	overflow: hidden;
}
.about-mian1-box img {
	width: 100%;
	height: 100%;
}
.about-mian1-left {
	width: 454px;
	height: 100%;
}
.about-mian1-left-top {
	height: 245px;
	overflow: hidden;
}
.about-mian1-left {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.about-mian1-left-bom {
	height: 248px;
	display: flex;
	justify-content: space-between;
}
.about-mian1-left-bom div {
	overflow: hidden;
	width: 223px;
}

.page-padding {
	padding-bottom: 48px;
}
.about-mian2 {
	padding: 90px 0 80px 0;
	background-color: #F2F2F2;
	
	display: flex;
	justify-content: center;
}


.about-mian2-box {
	width: 1200px;
	display: flex;
}
.about-mian2-left {
	flex: 1;
}
.about-mian2-right {
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-content: flex-start;
}
.about-mian2-img {
	width: 295px;
	height: 222px;
	margin-bottom: 10px;
	overflow: hidden;
}
.about-mian2-img img {
	width: 100%;
	height: 100%;
	transition: all 0.3s;
}
.about-mian2-img:hover img {
	transition: all 0.3s;
	transform: scale(1.1);
}
.about-text3 {
	font-size: 20px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
}
.about-mian2-conent {
	padding-left: 25px;
	position: relative;
	margin-top: 35px;
}
.about-mian2-conent::after {
	content: '';
	position: absolute;
	top: 12px;
	left: 0;
	width: 10px;
	height: 10px;
	background-color: #CFB34D;
	transform: rotate(45deg);
}
.about-mian2-conent::before {
	content: '';
	position: absolute;
	bottom: 12px;
	left: 0;
	width: 10px;
	height: 10px;
	background-color: #CFB34D;
	transform: rotate(45deg);
}
.about-box14 {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #666666;
	line-height: 22px;
	position: relative;
}
.about-box14::after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -21px;
	width: 1px;
	height: calc(100% - 30px);
	background-color: #CFB34D;
}

.about-mian2:nth-child(2n-1) {
	background-color: #fff !important;
}
.about-mian2:nth-child(2n-1) .about-mian2-box {
	flex-direction: row-reverse;
}
.about-mian2:nth-child(2n-1) .about-mian2-box .about-mian2-left .about-mian2-left-box{
	padding-left: 50px;
	box-sizing: border-box;
}

.about-mian2:nth-child(2n) .about-mian2-box .about-mian2-left .about-mian2-left-box{
	max-width: 560px;
}


.about-honor {
	background-color: #fff;
}

.about-honor-mian {
	display: flex;
	justify-content: center;
	margin: 60px 0 180px 0;
}
.about-honor-box {
	width: 1200px;
	display: flex;
}
.about-honor-bom {
	width: 65px;
	height: 377px;
	background: url('/static/home/img/honor-left.png');
	background-size: 100% 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s;
}
.honor-left {
	transform: rotate(180deg);
}
.about-honor-bom:hover {
	transition: all 0.3s;
	background: url('/static/home/img/honor-right.png');
	background-size: 100% 100%;
}

.about-honor-box-mid {
	flex: 1;
	height: 377px;
	overflow: hidden;
}
/* .about-honor-box-mid .swiper-wrapper {
	display: flex;
	justify-content: center;
} */
.box2-swiper-slide{
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.box2-swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.page-bannar-box2 .about-text2{
	text-align: center;
}

.page-box2 {
	justify-content: space-between;
	padding: 70px 63px 0 63px;
	box-sizing: border-box;
}
.page-box2 div {
	border: none;
}
.page-box2 .onPageTabs {
	background-color: transparent !important;
	color: #BA996C !important;
}
.page-box2 div {
	margin-left: 0;
	margin-bottom: 5px;
}

.pro-mian {
	display: flex;
	justify-content: center;
}
.pro-box2 {
	width: 1203px;
	margin: 60px 0 130px 0;
	
	display: flex;
	flex-wrap: wrap;
}
.pro-box-item {
	width: 400px;
	height: 475px;
	padding: 20px;
	box-sizing: border-box;
	border: 1px solid rgba(228, 228, 228, 0.7);
	
	display: flex;
	flex-direction: column;
	align-items: center;
	cursor: pointer;
}
.pro-box-item-img {
	height: 314px;
	overflow: hidden;
}
.pro-box-item-img img {
	width: 100%;
	height: 100%;
}
.pro-box-item-title {
	width: 100%;
	text-align: center;
	margin-top: 23px;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
}
.pro-box-item-text {
	margin-top: 23px;
	width: 150px;
	height: 35px;
	background: #FFFFFF;
	border: 1px dashed #BA996C;
	
	display: flex;
	align-items: center;
	justify-content: center;
	
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #BA996C;
}


.pro-mian2 {
	padding: 95px 0 170px 0;
	background-color: #fff;
	
	display: flex;
	flex-direction: column;
	align-items: center;
}
.pro-mian2-title {
	font-size: 32px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
}
.pro-mian2-mid {
	margin-top: 60px;
	width: 1200px;
	display: flex;
}
.pro-mian2-mid-left {
	width: 505px;
	height: 440px;
	overflow: hidden;
}
.pro-mian2-mid-left img {
	width: 100%;
	height: 100%;
}
.pro-mian2-mid-right {
	flex: 1;
	padding-left: 50px;
	box-sizing: border-box;
}
.pro-text1 {
	font-size: 20px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
}
.pro-text2 {
	margin-top: 20px;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #666666;
	line-height: 30px;
}
.pro-mian2-list {
	width: 1200px;
	display: flex;
	flex-wrap: wrap;
}
.pro-mian2-img {
	width: 378px;
	height: 325px;
	margin-right: 33px;
	margin-top: 30px;
}
.pro-mian2-img:nth-child(3n) {
	margin-right: 0;
}
.pro-mian2-img img {
	width: 100%;
	height: 100%;
}
.casus-mian {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 90px;
}
.casus-mian-list {
	width: 1200px;
	padding-top: 33px;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
}
.casus-mian-item {
	width: 378px;
	height: 380px;
	margin-right: 33px;
}

.casus-mian-item:nth-child(3n) {
	margin-right: 0;
}
.casus-mian-img {
	height: 235px;
	overflow: hidden;
}
.casus-mian-img img {
	width: 100%;
	height: 100%;
}
.casus-mian-text1 {
	margin-top: 20px;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	line-height: 27px;
}
.casus-details {
	background-color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 400px;
}
.casus-details-top {
	margin-top: 75px;
	width: 1200px;
	height: 82px;
	background-color: #F0F0F0;
	
	display: flex;
	align-items: center;
	padding-left: 35px;
	box-sizing: border-box;
}
.casus-text1 {
	max-width: 300px;
	font-size: 24px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
}
.casus-text2 {
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #666666;
}
.casus-details-top div {
	margin-right: 110px;
}
.casus-details-list {
	width: 1200px;
	display: flex;
	flex-wrap: wrap;
}
.casus-details-item {
	width: 585px;
	height: 366px;
	margin-top: 40px;
}
.casus-details-item img {
	width: 100%;
	height: 100%;
}
/* .casus-details-one {
	margin-right: 30px;
} */
/* .casus-details-tow {
	margin-top: 30px;
	width: 1200px;
	height: 493;
}
 */
.casus-details-item:nth-child(3n+1) {
	margin-right: 30px;
}
.casus-details-item:nth-child(3n) {
	margin-top: 30px;
	width: 1200px;
	height: 493;
}



.team-mian {
	background-color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 240px;
}
.tean-box {
	width: 1200px;
}
.team-list {
	margin-top: 52px;
	display: flex;
	flex-wrap: wrap;
}

.team-list-item {
	width: 226px;
	height: 111px;
	background: url('/static/home/img/team-bg.png');
	background-size: 100% 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 14px;
	cursor: pointer;
}
.page-box3 {
	justify-content: center;
}
.page-box3 div {
	padding: 0 30px;
}



.news-mian {
	background-color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 55px;
}
.news-item {
	margin-top: 20px;
	width: 1200px;
	display: flex;
	padding: 20px 55px;
	box-sizing: border-box;
	cursor: pointer;
	transition: all 0.3s; 
}
.news-item:hover {
	transition: all 0.3s; 
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0px 0px 87px 0px RGBA(237, 237, 237, 0.8);
}

.news-item-img {
	width: 275px;
	height: 165px;
	overflow: hidden;
}
.news-item-img img {
	width: 100%;
	height: 100%;
}
.news-item-right {
	flex: 1;
	padding: 0 90px 0 25px;
	box-sizing: border-box;
}
.news-item-icon {
	display: flex;
	align-items: center;
}
.news-item-icon-box {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #EDEDED;
	transition: all 0.3s;
	
	display: flex;
	align-items: center;
	justify-content: center;
}
.news-item:hover .news-item-icon-box {
	transition: all 0.3s;
	background: #BB953B;
}
.news-item-text1 {
	width: 600px;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #333333;
}
.news-item-text2 {
	padding: 28px 0 30px 0;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
}
.news-item-text3 {
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	line-height: 19px;
}
.news-details {
	margin-top: 42px;
	background-color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.news-details-box {
	width: 1200px;
	background: #FBFBFB;
	padding: 0 105px 50px 105px;
	box-sizing: border-box;
}
.news-text1 {
	text-align: center;
	padding: 35px 0 25px 0;
	font-size: 24px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	line-height: 30px;
	border-bottom: 1px solid rgba(228, 228, 228, 0.8);
}
.news-text2 {
	text-align: center;
	margin-top: 20px;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #999999;
}
.news-conent {
	margin-top: 75px;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	line-height: 30px;
}
.news-page {
	margin-top: 130px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.news-page div {
	width: 320px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	
	
	padding: 0 25px;
	box-sizing: border-box;
}
.news-page-left {
	border: 1px solid #BB953B;
	color: #BB953B;
}
.news-page-right {
	color: #FFFFFF;
	background-color: #BB953B;
}
.us-mian {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #F9F9F9;
	padding-bottom: 120px;
}
.us-mian .page-tabs {
	background: #F9F9F9;
}
.us-tabs {
	width: 1200px;
	margin-top: 70px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	
	font-size: 20px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
}
.us-tabs div {
	margin-left: 50px;
}
.onUsTabs {
	padding: 10px 30px;
	background: #BA996C;
	color: #fff;
}
.us-text1 {
	margin-top: 70px;
	font-size: 42px;
	font-family: Constantia;
	font-weight: 400;
	color: #BA996C;
}
.us-text2 {
	margin-top: 30px;
	font-size: 32px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
}
.us-map {
	margin-top: 65px;
	display: flex;
	width: 1200px;
}
.us-map-left {
	width: 405px;
	height: 355px;
	background-color: #fff;
	padding: 0 58px 0 49px;
	box-sizing: border-box;
}
.casus-map-right {
	flex: 1;
	margin-left: 28px;
	box-sizing: border-box;
	height: 355px;
}


.map-pop {
	width: 300px;
	height: 60px;
	background: #FFFFFF;
	box-shadow: 0px 1px 18px 0px rgba(0,0,0,0.35);  
	border-radius: 10px;
	
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #4F4F4F;
	
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	box-sizing: border-box;
}
.us-map-left {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.us-map-left-item {
	padding: 25px 0;
	display: flex;
	align-items: center;
	border-bottom: 1px solid rgba(237, 237, 237, 0.7);
}
.us-map-left-item:last-of-type {
	border: none;
}
.us-icon {
	width: 30px;
	display: flex;
	justify-content: center;
}
.us-text3 {
	flex: 1;
	padding-left: 20px;
	box-sizing: border-box;
}
.us-text4 {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
}
.us-text5 {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	line-height: 22px;
	margin-top: 10px;
}

.us-mian2 {
	background-color: #fff;
	display: flex;
	justify-content: center;
	padding: 120px 0;
}
.us-box2 {
	width: 1200px;
	height: 630px;
	box-shadow: 0px 1px 30px 0px rgba(0,0,0,0.1); 
	padding: 50px 40px;
	box-sizing: border-box;
}
.us-text6 {
	font-size: 22px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
}
.us-box3 {
	margin-top: 55px;
	display: flex;
	justify-content: space-between;
}
.us-box3-item {
	width: 330px;
}
.us-box3-item span {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
}
.us-item-input {
	margin-top: 10px;
	width: 100%;
	height: 30px;
	background: #F3F3F3;
	display: flex;
	align-items: center;
	padding: 0 20px;
	box-sizing: border-box;
	overflow: hidden;
	
}
.us-item-input input {
	flex: 1;
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	background: #F3F3F3;
	
}
.us-text6 {
	margin-top: 30px;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
}
.us-item-textarea {
	margin-top: 10px;
	height: 122px;
	background: #F3F3F3;
}

.us-item-textarea textarea {
	height: 100%;
	width: 100%;
	background: #F3F3F3;
	border: none;
	outline: none;
}
.us-sub {
	margin-top: 15px;
	background: #BA996C;
	height: 36px;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFEFE;
	
	display: flex;
	align-items: center;
	justify-content: center;
}
.us-mian4 {
	background: #F6F6F6;
	
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 135px;
}

.us-mian4-item {
	width: 1200px;
	background: #FFFFFF;
	margin: 5px 0;
	padding: 0 45px 0 40px;
	cursor: pointer;
}
.us-header {
	height: 103px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.us-div {
	width: 10px;
	height: 10px;
	background-color: #BA996C;
	transform: rotate(45deg);
	margin-right: 13px;
}
.ue-text8 {
	
	font-size: 20px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #333333;
}
.ue-text7 {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	
	display: flex;
	align-items: center;
}
.ue-text8 {
	display: flex;
	align-items: center;
}
.su-conent {
	padding: 20px 0 43px 0;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #666666;
	line-height: 30px;
}


















.footer {
	height: 465px;
	background: url('/static/home/img/footer.png');
	background-size: 100% 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
}
.footer-top {
	width: 1200px;
	display: flex;
	justify-content: space-between;
	padding-bottom: 40px;
	border-bottom: 3px dashed rgba(255, 255, 255, 0.5);
}
.footer-head {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.footer-left {
	align-items: flex-start !important;
}
.footer-head span {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #A3A3A3;
	margin-bottom: 20px;
}
.footer-head a {
	font-family: Microsoft YaHei;
	font-size: 14px;
	font-weight: 400;
	color: #A3A3A3;
	line-height: 36px;
	text-decoration: none;
}
.footer-text1 {
	margin-top: 10px;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #B3B3B3;
}
.footer-text2 {
	margin-top: 14px;
	font-size: 28px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	font-style: italic;
	color: #908352;
}
.footer-text3 {
	text-align: left;
	margin-top: 20px;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #B3B3B3;
	line-height: 26px;
}
.footer-icon {
	margin-top: 30px;
	display: flex;
	align-items: center;
}


.conversation-base {
	margin-right: 12px;
	box-sizing: border-box;
	position: relative;
	cursor: pointer;
}
.qr-content {
	width: 130px;
	height: 140px;
	background: #ffffff;
	box-shadow: 0 2px 16px 0 rgb(0 0 0 / 18%);
	border-radius: 6px;
	padding: 20px;
	
	box-sizing: border-box;
	position: absolute;
	top: -150px;
	left: 50%;
	margin-left: -65px;
	visibility: hidden;
	transform: translateY(10px) scale(0.9);
	opacity: 0;
	
	transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
	transition-property: transform, opacity, visibility, -webkit-transform;
}
.qr-content img {
	width: 100% !important;
	height: 100% !important;
	border-radius: unset !important;
	object-fit: contain !important;
}
.conversation-base:hover .qr-content {
	opacity: 1;
	visibility: visible;
	transform: translateY(0px) scale(1);
}
.conversation-base img {
	width: 34px;
	height: 34px;
	border-radius: 50%;
}

.footer-bom {
	width: 1200px;
	padding: 28px 0 24px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer-bom-left {
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #A3A3A3;
}

.footer-bom-left a {
	color: #A3A3A3;
	text-decoration: none;
}

.footer-bom-right {
	width: 245px;
	height: 40px;
	border: 1px dashed rgba(255, 255, 255, 0.5);
	padding: 0 10px;
	box-sizing: border-box;
	
	display: flex;
	align-items: center;
	justify-content: space-between;
	
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #CDCDCD;
	position: relative;
}
.footer-popup {
	position: absolute;
	bottom: 50px;
	width: 245px;
	left: 50%;
	transform: translateX(-50%);
	padding: 10px;
	background-color: #fff;
	border-radius: 10px;
	box-sizing: border-box;
	
	display: none;
}
.footer-popup a {
	color: #000;
	text-decoration: none;
}

#nav {
	width: 100%;
	height: 85px;
	position: fixed;
	z-index: 9999999;
	top: 0;
	left: 0;
	
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .3s;
}
.nav-box {
	width: 1200px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.nav-left {
	width: 378px;
	height: 60px;
	background: url('/static/home/img/logo.png');
	background-size: 100% 100%;
	cursor: pointer;
}
.nav-right {
	display: flex;
	align-items: center;
	justify-content: center;
}
.nav-right div {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	margin-left: 45px;
	cursor: pointer;
	position: relative;
}
.onNav::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 30px;
	height: 2px;
	background-color: #fff;
}
.navSoll {
	transition: all .3s;
	background-color: #fff !important;
}
.navSoll .nav-left {
	transition: all .3s;
	background: url('/static/home/img/logo2.png') !important;
}
.navSoll .nav-right div {
	transition: all .3s;
	color: #000;
}
.navSoll .onNav::after {
	background-color: #D1B859 !important;
}




 .fenye {
        position: relative;
        z-index: 10;
        width: 100%;
        text-align: center;
        padding: 11px;
    }

    .fenye li {
        display: inline-block;
        width: auto;
        text-align: center;
        line-height: 28px;
        height: 30px;
        margin-left: 7px;
        font-size: 14px;
        border: 1px solid #dcdcdc;
        background: #fff
    }
    .fenye li:hover {
        color: #fff;
    }
    .fenye li span:hover {
        color: #fff;
    }

    .fenye li a, .fenye li span {
        padding-left: 10px;
        padding-right: 10px;
        display: block;
        font-size: 16px;
        color: #000;
		text-decoration: none;
    }

    .fenye li:hover {
        background-color: #d0b655;
    }

    .fenye li:hover a {
        color: #fff
    }

    .fenye .active {
        background-color: #d0b655;
        color: #fff !important
    }

    .fenye .active span {
        color: #fff;
    }

.layui-layer-photos {
	top: 50% !important;
	transform: translateY(-50%) !important;
}







